home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / ip / slip / cslip-2.6 / tip / libacu / Makefile < prev    next >
Encoding:
Makefile  |  1990-10-06  |  1.6 KB  |  56 lines

  1. #
  2. # Copyright (c) 1988 The Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation,
  8. # advertising materials, and other materials related to such
  9. # distribution and use acknowledge that the software was developed
  10. # by the University of California, Berkeley.  The name of the
  11. # University may not be used to endorse or promote products derived
  12. # from this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14. # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15. # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. #    @(#)Makefile    5.4 (Berkeley) 9/2/88
  18. #
  19. # make file for tip device drivers
  20. #
  21. # Current drivers:
  22. #    BIZCOMP
  23. #    USR COURIER (2400 baud)
  24. #    DEC DF02-AC, DF03-AC
  25. #    DEC DN-11/Able Quadracall
  26. #    HAYES and Hayes emulators
  27. #    VENTEL 212+ (w/o echo)
  28. #    VADIC 831 RS232 adaptor
  29. #    VADIC 3451
  30. #    Hayes Smartmodem 2400
  31. #    Telebit Trailblazer
  32.  
  33. CFLAGS=    -O -I..
  34. CC= gcc -g
  35.  
  36. # Explicitly define compiliation rule since SunOS 4.X's make doesn't like gcc.
  37. .c.o:
  38.     rm -f $@; $(CC) $(CFLAGS) -c $*.c
  39.  
  40. ALLOBJS= biz22.o biz31.o courier.o df.o dn11.o hayes.o ventel.o v831.o \
  41.     v3451.o sm2400.o telebit.o
  42. OBJS= telebit.o hayes.o v3451.o
  43.  
  44. # Explicitly define compiliation rule since SunOS 4.X's make doesn't like gcc.
  45. .c.o:
  46.     rm -f $@; $(CC) $(CFLAGS) -c $*.c
  47.  
  48. libacu.a: ${OBJS}
  49.     ar cu libacu.a *.o
  50.     ranlib libacu.a
  51.  
  52. ${OBJS}: ../tip.h
  53.  
  54. clean:
  55.     rm -f libacu.a *.o core errs a.out
  56.